home *** CD-ROM | disk | FTP | other *** search
/ Winzipper / Winzipper_ISO.iso / nt4.0 server / OEMNADLM.IN_ / oemnadlm.inf
INI File  |  1996-07-12  |  20KB  |  506 lines

  1. [Identification]
  2.    OptionType = NetAdapter
  3. [PlatformsSupported]
  4.    MCA
  5. [Options]
  6.    LT200MC
  7. [FileConstants]
  8. UtilInf                 = "UTILITY.INF"
  9. SubInf                  = "SUBROUTN.INF"
  10. SoftwareType            = "driver"
  11. LT200MC_1BYTE           = 116
  12. LT200MC_2BYTE           = 102
  13. NETCARD_ID              = 26228
  14. Manufacturer            = "Microsoft"
  15. ProductMajorVersion     = "4"
  16. ProductMinorVersion     = "0"
  17. ProductVersion          = $(ProductMajorVersion)"."$(ProductMinorVersion)
  18. ProductInfName          = "oemnadlm.inf"
  19. ProductSoftwareName      =      "lt200"
  20. ProductSoftwareImagePath =      "%SystemRoot%\system32\drivers\lt200.sys"
  21. NetRuleSoftwareType      =      "Lt200Sys ltkndisDriver lt200Driver"
  22. NetRuleSoftwareUse       =      $(SoftwareType)
  23. NetRuleSoftwareBindForm  =      """Lt200Sys"" yes no container"
  24. NetRuleSoftwareClass     =      {"lt200Driver basic","ltkndisDriver basic yes"}
  25. NetRuleSoftwareBindable  =      {"lt200Driver lt200Adapter non exclusive 100",+
  26.                              "ltkndisDriver lt200Driver non non 100"}
  27. ProductEventDll         =  "%SystemRoot%\system32\netevent.dll"
  28. ProductHardwareName     =  "lt200"
  29. NetRuleHardwareType     =  "lt200 lt200Adapter"
  30. NetRuleHardwareBindForm =  " yes yes container"
  31. NetRuleHardwareClass    =  {"lt200Adapter basic"}
  32. ProductOpSupport     = 134 
  33. ProductKeyName  = $(!NTN_SoftwareBase)"\"$(Manufacturer)"\"$(ProductSoftwareName)"\CurrentVersion"
  34. ParamKeyName    = $(!NTN_ServiceBase)"\"$(ProductHardwareName)"\Parameters"
  35. CardKey         = $(!NTN_SoftwareBase)"\Microsoft\Windows NT\CurrentVersion\NetworkCards"
  36. [GeneralConstants]
  37. KeyNull                 = ""
  38. MAXIMUM_ALLOWED         = 33554432
  39. RegistryErrorIndex      = NO_ERROR
  40. KeyProduct              = ""
  41. KeyParameters           = ""
  42. TRUE                    = 1
  43. FALSE                   = 0
  44. NoTitle                 = 0
  45. [date]
  46.    Now = {} ? $(!LIBHANDLE) GetSystemDate
  47. [Identify]
  48.     read-syms Identification
  49.     set Status     = STATUS_SUCCESSFUL
  50.     set Identifier = $(OptionType)
  51.     set Media      = #("Source Media Descriptions", 1, 1)
  52.     Return $(Status) $(Identifier) $(Media)
  53. [ReturnOptions]
  54.     set Status        = STATUS_FAILED
  55.     set OptionList     = {}
  56.     set OptionTextList = {}
  57.     set LanguageList = ^(LanguagesSupported, 1)
  58.     Ifcontains(i) $($0) in $(LanguageList)
  59.         ifstr(i) $($1) == ""
  60.            goto returnoptions
  61.         endif
  62.         set PlatformList = ^(PlatformsSupported, 1)
  63.         Ifcontains(i) $($1) in $(PlatformList)
  64.            goto returnoptions
  65.         else
  66.            set Status = STATUS_NOTSUPPORTED
  67.            goto finish_ReturnOptions
  68.         endif
  69.    else
  70.         set Status = STATUS_NOLANGUAGE
  71.         goto finish_ReturnOptions
  72.    endif
  73. returnoptions = +
  74.     set OptionList     = ^(Options, 1)
  75.     set OptionTextList = ^(OptionsText$($0), 1)
  76.     set Status         = STATUS_SUCCESSFUL
  77. finish_ReturnOptions = +
  78.     Return $(Status) $(OptionList) $(OptionTextList)
  79. [InstallOption]
  80.     set Status   = STATUS_FAILED
  81.     set Option   = $($1)
  82.     set SrcDir       = $($2)
  83.     Set AddCopy  = $($3)
  84.     Set DoCopy       = $($4)
  85.     Set DoConfig = $($5)
  86.     set LanguageList = ^(LanguagesSupported, 1)
  87.     Ifcontains(i) $($0) NOT-IN $(LanguageList)
  88.            return STATUS_NOLANGUAGE
  89.     EndIf
  90.     StartWait
  91.     set-subst LF = "\n"
  92.     set-subst CR = "\r"
  93.     read-syms GeneralConstants
  94.     read-syms FileConstants
  95.     read-syms DialogConstants$(!STF_LANGUAGE)
  96.     read-syms FileConstants$(!STF_LANGUAGE)
  97.     detect date
  98.     set-title  $(FunctionTitle)
  99.     set CommonStatus = STATUS_SUCCESSFUL
  100.     EndWait
  101. Begin = +
  102.     Ifstr(i) $(!NTN_InstallMode) == deinstall
  103.           set StartLabel = removeadapter
  104.           Set RemoveonError = FALSE
  105.     else-Ifstr(i) $(!NTN_InstallMode) == Update
  106.       set StartLabel = UpgradeSoftware
  107.     else-Ifstr(i) $(!NTN_InstallMode) == bind
  108.       set StartLabel = bindingadapter
  109.     else-Ifstr(i) $(!NTN_InstallMode) == configure
  110.       set CommonStatus = STATUS_USERCANCEL
  111.       set StartLabel = configureadapter
  112.     else
  113.         set StartLabel = installadapter
  114.         set REMOVE_SOFTWARE = TRUE
  115.         set REMOVE_HARDWARE = {}
  116.                 Set RemoveOnError = TRUE
  117.     endif
  118.     goto $(StartLabel)
  119. installadapter = +
  120.     OpenRegKey $(!REG_H_LOCAL) "" $(ProductKeyName) $(MAXIMUM_ALLOWED) KeyProduct
  121.     Ifstr $(KeyProduct) != $(KeyNull)
  122.         GetRegValue $(KeyProduct) $(MajorVersion) VersionInfo
  123.         set VersionMajor = *($(VersionInfo), 4)
  124.         GetRegValue $(KeyProduct) $(MinorVersion) VersionInfo
  125.         set VersionMinor = *($(VersionInfo), 4)
  126.         set InstalledVersion = $(VersionMajor)"."$(VersionMinor)
  127.         ifstr(i) $(ProductVersion) == $(InstalledVersion)
  128.             read-syms MiscErrorString1$(!STF_LANGUAGE)
  129.             Set Text = $(Version)$(ProductVersion)
  130.             Shell $(SubInf), SetupMessage $(!STF_LANGUAGE) "NONFATAL" $(Text)$(ErrorString)
  131.             goto end
  132.         EndIf
  133.     EndIf
  134.    ifstr(i) $(!NTN_InstallMode) == "install"
  135.           Ifstr(i) $(!DoCopy) == "YES"
  136.                  Shell $(UtilInf), DoAskSource, $(!STF_CWDDIR), $(SrcDir) YES
  137.                  Ifint $($ShellCode) != $(!SHELL_CODE_OK)
  138.                         Goto ShellCodeError
  139.                  Else-Ifstr(i) $($R0) == STATUS_FAILED
  140.                         Shell $(UtilInf) RegistryErrorString "ASK_SOURCE_FAIL"
  141.             ifint $($ShellCode) != $(!SHELL_CODE_OK)
  142.                            goto ShellCodeError
  143.                         endif
  144.             set Error = $($R0)
  145.             Goto end
  146.                  Else-Ifstr(i) $($R0) == STATUS_USERCANCEL
  147.                         Goto end
  148.                  Endif
  149.                  Set SrcDir  = $($R1)
  150.           Endif
  151.    Endif
  152. adapteroptions = +
  153.     Shell $(UtilInf), MCAFindBus, $(LT200MC_1BYTE), $(LT200MC_2BYTE)
  154.     ifstr(i) $($R0) != "NO_ERROR"
  155.        set Error = $($R0)
  156.       goto fatal
  157.     endif
  158.     ifint $($ShellCode) != 0
  159.           goto ShellCodeError
  160.     endif
  161.     ifstr(i) $($R1) == {}
  162.         read-syms MiscErrorString2$(!STF_LANGUAGE)
  163.         Shell $(SubInf) SetupMessage $(!STF_LANGUAGE) "NONFATAL" $(ErrorString)
  164.         goto usercancel
  165.     endif
  166.     set AdapterList = $($R1)
  167. installproduct = +
  168.     install "Install-Initial"
  169.     ifstr(i) $(STF_INSTALL_OUTCOME) != STF_SUCCESS
  170.         goto usercancel
  171.     Endif
  172.     Set FLibraryErrCtl = 1
  173.     Shell $(UtilInf), AddSoftwareComponent, $(Manufacturer),+
  174.                   $(ProductSoftwareName), +
  175.                   $(ProductSoftwareName), +
  176.                   $(ProductSoftwareName), +
  177.                   $(ProductInfName),+
  178.                   $(ProductSoftwareImagePath),+
  179.                   "kernel", "NDIS", {}, "", $(ProductEventDll)
  180.     ifint $($ShellCode) != 0
  181.         goto ShellCodeError
  182.     endif
  183.     set RegistryErrorIndex = $($R0)
  184.     set KeyProduct      = $($R1)
  185.     Set SoftNetRulesKey = $($R2)
  186.     CloseRegKey $($R3)
  187.     CloseRegKey $($R4)
  188.     CloseRegKey $($R5)
  189.     Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
  190.         CloseRegKey $(KeyProduct)
  191.         CloseRegKey $(SoftNetRulesKey)
  192.         goto fatalregistry
  193.     endif
  194.     set NewValueList = {{SoftwareType,0,$(!REG_VT_SZ),$(SoftwareType)},+
  195.                        {MajorVersion,0,$(!REG_VT_DWORD),$(ProductMajorVersion)},+
  196.                        {MinorVersion,0,$(!REG_VT_DWORD),$(ProductMinorVersion)},+
  197.                        {Title,0,$(!REG_VT_SZ),$(ProductSoftwareTitle)},+
  198.                        {Description,0,$(!REG_VT_SZ),$(ProductSoftwareDescription)},+
  199.                        {PathName,0,$(!REG_VT_SZ),$(!STF_WINDOWSSYSPATH)},+
  200.                        {ServiceName,0,$(!REG_VT_SZ),$(ProductSoftwareName)},+
  201.                        {InstallDate,0,$(!REG_VT_DWORD),*($(Now),1)}}
  202.     Shell   $(UtilInf), AddValueList, $(KeyProduct), $(NewValueList)
  203.     ifint $($ShellCode) != 0
  204.         goto ShellCodeError
  205.     endif
  206.     set RegistryErrorIndex = $($R0)
  207.     Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
  208.         CloseRegKey $(KeyProduct)
  209.         CloseRegKey $(SoftNetRulesKey)
  210.         goto fatalregistry
  211.     endif
  212.     set NewValueList = {{type,0,$(!REG_VT_SZ),$(NetRuleSoftwareType)},+
  213.                        {use,0,$(!REG_VT_SZ),$(NetRuleSoftwareUse)}, +
  214.                        {bindform,0,$(!REG_VT_SZ),$(NetRuleSoftwareBindForm)}, +
  215.                        {class,0,$(!REG_VT_MULTI_SZ),$(NetRuleSoftwareClass)}, +
  216.                        {bindable,0,$(!REG_VT_MULTI_SZ),$(NetRuleSoftwareBindable)}, +
  217.                        {InfOption,0,$(!REG_VT_SZ),$(Option)}, +
  218.                        {Infname ,0,$(!REG_VT_SZ),$(ProductInfName)} }
  219.     Shell  $(UtilInf), AddValueList, $(SoftNetRulesKey), $(NewValueList)
  220.     ifint $($ShellCode) != 0
  221.         goto ShellCodeError
  222.     endif
  223.     set RegistryErrorIndex = $($R0)
  224.     CloseRegKey $(KeyProduct)
  225.     CloseRegKey $(SoftNetRulesKey)
  226.     Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
  227.         goto fatalregistry
  228.     endif
  229.     ForListDo $(AdapterList)
  230.         set BusNum = *($($),1)
  231.         set SlotNum = *($($),2)
  232.         Debug-Output "Bus Number = "$(BusNum)
  233.         Debug-Output "Slot Number = "$(SlotNum)
  234.         Shell $(UtilInf), IsNetCardAlreadyInstalled, $(BusNum), +
  235.                       $(SlotNum), +
  236.                       $(ProductHardwareDescription), +
  237.                       $(ProductHardwareName)
  238.         ifint $($ShellCode) != 0
  239.                 goto ShellCodeError
  240.         endif
  241.         Ifstr $($R0) != NO_ERROR
  242.                set Error = $($R0)
  243.                     goto fatal
  244.         Endif
  245.         ifstr(i) $($R1) != "YES"
  246.             Shell $(UtilInf), AddHardwareComponent, $(ProductHardwareName),+
  247.                               $(ProductInfName),$(ProductKeyName)
  248.             ifint $($R4) != -1
  249.                 Set REMOVE_HARDWARE = >($(REMOVE_HARDWARE),$(CardKey)"\"$($R4))
  250.             endif
  251.             ifint $($ShellCode) != 0
  252.                 goto ShellCodeError
  253.             endif
  254.             set RegistryErrorIndex = $($R0)
  255.             Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
  256.                CloseRegKey $($R1)
  257.                CloseRegKey $($R2)
  258.                CloseRegKey $($R3)
  259.                goto fatalregistry
  260.             Endif
  261.             set KeyParameters = $($R3)
  262.             set KeyAdapterRules = $($R2)
  263.             set AdapterNumber = $($R4)
  264.             set NewValueList = {{Manufacturer,0,$(!REG_VT_SZ),$(Manufacturer)},+
  265.                                {Title,0,$(!REG_VT_SZ),"["$($R4)"] "$(ProductHardwareTitle)},+
  266.                                {Description,0,$(!REG_VT_SZ),$(ProductHardwareDescription)},+
  267.                                {ProductName,0,$(!REG_VT_SZ),$(ProductHardwareName)},+
  268.                                {ServiceName,0,$(!REG_VT_SZ),$($R5)},+
  269.                                {OperationsSupport,$(NoTitle),$(!REG_VT_DWORD),$(ProductOpSupport)},+
  270.                                {InstallDate,0,$(!REG_VT_DWORD),*($(Now),1)}}
  271.             Shell  $(UtilInf), AddValueList, $($R1), $(NewValueList)
  272.             ifint $($ShellCode) != 0
  273.                 goto ShellCodeError
  274.             endif
  275.             CloseRegKey $($R1)
  276.             set TempProdName = """"$(ProductHardwareName)$(AdapterNumber)""""
  277.             set TempBindForm = $(TempProdName)$(NetRuleHardwareBindForm)
  278.             set NewValueList = {{type,0,$(!REG_VT_SZ),$(NetRuleHardwareType)},+
  279.                                 {bindform,0,$(!REG_VT_SZ),$(TempBindForm)}, +
  280.                                 {class,0,$(!REG_VT_MULTI_SZ),$(NetRuleHardwareClass)}, +
  281.                                 {InfOption,0,$(!REG_VT_SZ),$(Option)}, +
  282.                                 {Infname ,0,$(!REG_VT_SZ),$(ProductInfName)}}
  283.             Shell  $(UtilInf), AddValueList, $(KeyAdapterRules), $(NewValueList)
  284.             ifint $($ShellCode) != 0
  285.                 goto ShellCodeError
  286.             endif
  287.             set RegistryErrorIndex = $($R0)
  288.             Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
  289.                     CloseRegKey $(KeyParameters)
  290.                     CloseRegKey $(KeyAdapterRules)
  291.                     goto fatalregistry
  292.             endif
  293.             CloseRegKey $(KeyAdapterRules)
  294.     EndForListDo
  295.     goto writeparameters
  296. configureadapter = +
  297.    read-syms NoConfig$(!STF_LANGUAGE)
  298.    Shell $(SubInf) SetupMessage $(!STF_LANGUAGE) "NONFATAL" $(ErrorString)
  299.    goto end
  300. writeparameters = +
  301.     set NewValueList = {{BusNumber,0,$(!REG_VT_DWORD),$(BusNum)},+
  302.                         {MediaType,0,$(!REG_VT_DWORD),5},+
  303.                         {McaPosId,0,$(!REG_VT_DWORD),$(NETCARD_ID)},+
  304.                         {BusType,0,$(!REG_VT_DWORD),3},+
  305.                         {Server,0,$(!REG_VT_DWORD),1},+
  306.                         {SlotNumber,0,$(!REG_VT_DWORD),$(SlotNum)}}
  307.     Shell  $(UtilInf), AddValueList, $(KeyParameters), $(NewValueList)
  308.     CloseRegKey $(KeyParameters)
  309.     ifint $($ShellCode) != 0
  310.         Debug-Output "ShellCode error."
  311.         goto ShellCodeError
  312.     endif
  313.     set RegistryErrorIndex = $($R0)
  314.     Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
  315.        goto fatalregistry
  316.     endif
  317.     goto end
  318. bindingadapter = +
  319.         goto end
  320. removeadapter = +
  321.     Set FLibraryErrCtl = 1
  322.     Ifstr(i) $(ProductKeyName) == $(!NTN_RegBase)
  323.                 Shell $(UtilInf), RemoveSoftwareComponent, $(Manufacturer),$(ProductSoftwareName)
  324.                 ifint $($ShellCode) != 0
  325.             Debug-Output "ShellCode error"
  326.             goto ShellCodeError
  327.                 endif
  328.                 set RegistryErrorIndex = $($R0)
  329.                 Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
  330.             goto fatalregistry
  331.                 endif
  332.     else
  333.                 Shell $(UtilInf), RemoveHardwareComponent, $(Manufacturer),$(ProductSoftwareName), $(!NTN_RegBase)
  334.                 ifint $($ShellCode) != 0
  335.             Debug-Output "ShellCode error"
  336.             goto ShellCodeError
  337.                 endif
  338.                 set RegistryErrorIndex = $($R0)
  339.                 Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
  340.             goto fatalregistry
  341.                 endif
  342.         endif
  343.         goto end
  344. UpgradeSoftware = +
  345.     OpenRegKey $(!REG_H_LOCAL) "" $(ProductKeyName) $(MAXIMUM_ALLOWED) KeyProduct
  346.     Ifstr $(KeyProduct) != $(KeyNull)
  347.         install "Install-Update"
  348.         ifstr(i) $(STF_INSTALL_OUTCOME) != STF_SUCCESS
  349.             goto fatal
  350.         endif
  351.         SetRegValue $(KeyProduct) {MajorVersion,$(NoTitle),$(!REG_VT_SZ),$(ProductMajorVersion)}
  352.         SetRegValue $(KeyProduct) {MinorVersion,$(NoTitle),$(!REG_VT_SZ),$(ProductMinorVersion)}
  353.         CloseRegKey $(KeyProduct)
  354.     else
  355.         goto fatalregistry
  356.     endif
  357.     set iSearch = 1
  358. nextnetcard = +
  359.     Shell $(UtilityInf), FindNextNetworkCard, $(ProductHardwareName), $(iSearch)
  360.     set KeyNetcard = $($R0)
  361.     set iSearch = $($R1)
  362.     Debug-Output "OemNadEp.Inf: FindNextNetworkCard "$(KeyNetcard)","$(iSearch)
  363.     Ifstr $(KeyNetcard) != $(KeyNull)
  364.         Debug-Output "OemNadEp.Inf: Setting OperationsSupport value"
  365.         SetRegValue $(KeyNetcard) {OperationsSupport,$(NoTitle),$(!REG_VT_DWORD),$(ProductOpSupport)}
  366.         CloseRegKey $(KeyNetcard)
  367.         goto nextnetcard
  368.     Endif
  369.     goto end
  370. successful = +
  371. installstep1 = +
  372.         goto end
  373. abandon = +
  374.    ForListDo $(REMOVE_HARDWARE)
  375.           Shell $(UtilInf), RemoveHardwareComponent, $(Manufacturer), +
  376.                         $(ProductSoftwareName), $($)
  377.           ifint $($ShellCode) != 0
  378.                  Debug-Output "ShellCode error"
  379.          goto ShellCodeError
  380.           endif
  381.           set RegistryErrorIndex = $($R0)
  382.           Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
  383.                  goto fatalregistry
  384.       endif
  385.    EndForListDo
  386.    Ifstr(i) $(REMOVE_SOFTWARE) == TRUE
  387.           Shell $(UtilInf), RemoveSoftwareComponent, +
  388.                                                    $(Manufacturer), +
  389.                                                    $(ProductSoftwareName), FALSE
  390.       ifint $($ShellCode) != 0
  391.                  goto ShellCodeError
  392.       endif
  393.       set RegistryErrorIndex = $($R0)
  394.       Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
  395.                  goto fatalregistry
  396.       endif
  397.    endif
  398.    goto end
  399. fatalregistry = +
  400.     Shell $(UtilInf) RegistryErrorString $(RegistryErrorIndex)
  401.     ifint $($ShellCode) != 0
  402.            goto ShellCodeError
  403.     endif
  404.     set Error = $($R0)
  405.     goto fatal
  406. fatal = +
  407.    ifstr(i) $(!NTN_InstallMode) == install
  408.           read-syms MiscErrorString3$(!STF_LANGUAGE)
  409.           Shell $(SubInf) SetupMessage, $(!STF_LANGUAGE), "FATAL", $(ErrorString)$(Error)
  410.    Else
  411.           Shell $(SubInf) SetupMessage, $(!STF_LANGUAGE), "FATAL", $(Error)
  412.    EndIf
  413.    ifint $($ShellCode) != 0
  414.           goto ShellCodeError
  415.    endif
  416.    goto setfailed
  417. ShellCodeError = +
  418.    read-syms ShellingError$(!STF_LANGUAGE)
  419.    Shell $(SubInf) SetupMessage $(!STF_LANGUAGE) "FATAL" $(ErrorString)
  420. setfailed = +
  421.    set CommonStatus = STATUS_FAILED
  422.    ifstr(i) $(RemoveOnError) == TRUE
  423.           Set RemoveOnError = FALSE
  424.           goto abandon
  425.    Endif
  426.    goto end
  427. usercancel = +
  428.    set CommonStatus = STATUS_USERCANCEL
  429. end = +
  430.    Return $(CommonStatus)
  431. [Install-Initial]
  432.    Set STF_VITAL = ""
  433.    AddSectionFilesToCopyList Files-LT200 $(SrcDir) $(!STF_WINDOWSSYSPATH)"\DRIVERS"
  434.    CopyFilesInCopyList
  435.    exit
  436. [Install-Update]
  437.    Set STF_VITAL = ""
  438.    AddSectionFilesToCopyList Files-LT200 $(SrcDir) $(!STF_WINDOWSSYSPATH)"\DRIVERS"
  439.    exit
  440. [Source Media Descriptions]
  441.     1 = "Windows NT Server CD-ROM", TAGFILE = cdrom_s.40
  442. [Signature]
  443.     FileType = MICROSOFT_FILE
  444. [GetSignature]
  445.     read-syms Signature
  446.     return $(FileType)
  447. [ProductType]
  448. STF_PRODUCT  = LanmanNT
  449. STF_PLATFORM = I386
  450. [Files-Inf]
  451. 2,    oemsetup.inf,     SIZE=1000,    RENAME=$(!UG_Filename)
  452. [Files-LT200]
  453. 1,LT200.SYS , SIZE=999
  454. [LanguagesSupported]
  455. ENG
  456. [OptionsTextENG]
  457. LT200MC   = "COPS/DayStar Digital LocalTalk Adapter (MCA)"
  458. [FileConstantsENG]
  459. ProCaption              = "LocalTalk Adapter Setup"
  460. ProCancel               = "Cancel"
  461. ProCancelMsg    = "LocalTalk Adapter is not correctly installed. "+
  462.                   "Are you sure you want to cancel copying files ?"
  463. ProCancelCap    = "Network Setup Message"
  464. ProText1                = "Copying:"
  465. ProText2        = "To:"
  466. Error           = "User has canceled copying files. Copied files will be removed."
  467. FunctionTitle                   = "DayStar Digital LocalTalk Adapter Card Setup"
  468. ProductSoftwareDescription      = "DayStar Digital LocalTalk Adapter Driver"
  469. ProductHardwareDescription      = "DayStar Digital LocalTalk Adapter"
  470. AskLocationText = "Setup needs to copy LocalTalk Adapter files."$(!LF)$(!LF)+
  471.                   "Setup will look for the files in the location specified below. If you want "+
  472.                   "Setup to look in a different place, type the new location. When the location "+
  473.                   "is correct, click Continue."
  474. MajorVersion    = "MajorVersion"
  475. MinorVersion    = "MinorVersion"
  476. Version                 = "Version "
  477. ProductSoftwareTitle    =  "Daystar Digital LocalTalk Adapter Driver"
  478. ProductHardwareTitle    =  "DayStar Digital LocalTalk Adapter"
  479. [DialogConstantsENG]
  480. Help        = "&Help"
  481. Exit        = "Cancel"
  482. OK          = "OK"
  483. HelpContext = ""
  484. Continue    = "Continue"
  485. Cancel      = "Cancel"
  486. [MiscErrorString1ENG]
  487. ErrorString = +
  488. " of the LocalTalk adapter driver is already installed in your system. "+
  489. "Use [Update] to update to newer versions."
  490. [MiscErrorString2ENG]
  491. ErrorString = +
  492. "A LocalTalk adapter could not be found in your system. Please "+
  493. "check your system configuration."
  494. [MiscErrorString3ENG]
  495. ErrorString = +
  496. "Setup encountered the following error during installation. Try installing the "+
  497. "LocalTalk Adapter after rebooting your system. "$(LF)
  498. [NoConfigENG]
  499. ErrorString = +
  500. "This adapter does not have any configurable parameters."
  501. [StatusRemove1ENG]
  502. Status = "Removing LocalTalk Adapter files..."
  503. [ShellingErrorENG]
  504. ErrorString  = +
  505. "An internal error occurred. Contact Technical Support."
  506.